home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
funfont2.3
/
bin
/
amirc
/
rexx
/
send.amirx
< prev
next >
Wrap
Text File
|
1981-05-07
|
316b
|
22 lines
/* Filesend for AmIRC
\\ By The Possessed Programmer
// Tipop@concentric.net
\\ USAGE: /rx Send Filename
//
\\ Put this script in PROGDIR:rexx/
// and send any text file through
\\ AmIRC
*/
Arg filename
if open('data',filename,'R') then do while EOF('data')=0
line=readln('data')
'SAY' line
end
EXIT